home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / util-linux.postrm < prev    next >
Encoding:
Text File  |  2011-01-25  |  478 b   |  27 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     remove)
  5.         ;;
  6.         purge)
  7.                 update-rc.d hwclock.sh remove >/dev/null || true
  8.         update-rc.d hwclockfirst.sh remove >/dev/null || true
  9.         rm -f /etc/adjtime
  10.                 ;;
  11.     *)
  12.         ;;
  13. esac
  14.  
  15. if [ -x /usr/sbin/update-mime ]; then
  16.     update-mime
  17. fi
  18.  
  19.  
  20. # Automatically added by dh_installdebconf
  21. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  22.     . /usr/share/debconf/confmodule
  23.     db_purge
  24. fi
  25. # End automatically added section
  26.  
  27.